home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / GRAPHICS / POV302.ZIP / pov302 / pov3demo / showoff / newltpot / pov / teapot4 < prev   
Text File  |  1995-11-30  |  1KB  |  49 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // Full-blown Tiffany style teapot.  Reticulated gold body, with
  3. // gold wire trim
  4.  
  5. #version 3.0
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. #include "colors.inc"
  9. #include "textures.inc"
  10. #include "atmos.inc"
  11. #include "golds.inc"
  12. #include "skies.inc"
  13.  
  14. camera {
  15.    location  <0, 4, -6>
  16.    direction <0, 0,  1.25>
  17.    up        <0, 1,  0>
  18.    right     <4/3, 0,  0>
  19.    look_at   <-0.25, 1.5, 0>
  20. }
  21.  
  22. light_source {<10, 20, -30> color White}
  23.  
  24. plane { y, -1
  25.     pigment { color red 0.13 green 0.37 blue 0.41  }
  26.     finish { ambient 0.1 }
  27. }
  28.  
  29. sky_sphere { S_Cloud1 }
  30.  
  31. #declare Cyl1_Pot = union { #include "teapot.c1" }
  32. #declare Cyl2_Pot = union { #include "teapot.c2" }
  33. #declare Cyl3_Pot = union { #include "teapot.c3" }
  34. #declare Tri_Pot = union { #include "teapot.tri" }
  35. union {
  36.     object { Cyl1_Pot texture { T_Gold_3C } }
  37.     object { Cyl2_Pot texture { T_Gold_3C } }
  38.     object { Cyl3_Pot texture { T_Gold_3C } }
  39.     object { Tri_Pot
  40.         texture { T_Gold_3C
  41.             normal { granite 0.3 scale 0.2 }
  42.         }
  43.     }
  44.     translate y*1
  45.     translate ((3.15-2.0)/2) * z
  46.     rotate -x*90
  47.     rotate y*60
  48. }
  49.